home *** CD-ROM | disk | FTP | other *** search
/ Champak 109 / Vol 109.iso / games / let_it_f.swf / scripts / DefineSprite_800 / frame_1 / DoAction.as
Text File  |  2008-11-12  |  205b  |  12 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(_root.water_is_flowing == true)
  4.    {
  5.       this.gotoAndStop(50);
  6.    }
  7.    else
  8.    {
  9.       this.gotoAndStop(Math.round(_root.amountpumped / 2) + 1);
  10.    }
  11. };
  12.